home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / editor / auror300.zip / SYSTEM.AML < prev    next >
Text File  |  1996-07-17  |  2KB  |  62 lines

  1. //--------------------------------------------------------------------
  2. // The Aurora Editor v3.0, Copyright (C) 1993-1996 nuText Systems
  3. //
  4. // SYSTEM.AML
  5. // System Settings (included by Main.aml)
  6. //
  7. // To change a setting, locate the desired setting in this file and type
  8. // in the new value. Character and string values should be enclosed in
  9. // quotes.
  10. //
  11. // When you are finished, save this file and select Recompile the
  12. // Editor from the Set menu. Exit and re-enter the editor for your
  13. // changes to take effect.
  14. //--------------------------------------------------------------------
  15.  
  16.  
  17. // disable the video blink mode (disabling the video blink mode
  18. // allows the use of high intensity background colors)
  19. blink OFF
  20.  
  21. // set cursor size in insert and overstrike modes
  22. cursorsize
  23.    // overstrike mode
  24.    80       // cursor top    (0-99)
  25.    90       // cursor bottom (0-99)
  26.  
  27.    // insert mode
  28.    50       // cursor top    (0-99)
  29.    90       // cursor bottom (0-99)
  30.  
  31. // keyboard options:
  32. kbdoptions 'egw'
  33.    // e=enable enhanced keyboard
  34.    // g=enable unshifted grey keypad function keys
  35.    //     <grey*>, <grey->, <grey+>
  36.    // w=enable shifted white keypad function keys
  37.    //     <shift del>, <shift ins>, <shift end>, etc.
  38.  
  39.  
  40. // enable the PC speaker
  41. speaker ON
  42.  
  43. // international date and time format
  44. international _DateOpt _DateSep _TimeOpt _TimeSep _ThousandSep
  45.  
  46. // system memory settings
  47.  
  48. maxxms      -1                  // maximum XMS memory (in k) to use:
  49.                                 //    0=none
  50.                                 //   -1=available maximum
  51.  
  52. maxems      -1                  // maximum EMS memory (in k) to use:
  53.                                 //    0=none
  54.                                 //   -1=available maximum
  55.  
  56. swapfiles                       // swap files:
  57.    "c:\\aurora@1.swp"           //   primary swap file
  58.    "d:\\aurora@2.swp"           //   secondary swap file
  59.  
  60. memoptions  'o'                 // memory options:
  61.                                 //   o=allow open files
  62.